home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1996 #5
/
Amiga Plus CD - 1996 - No. 5.iso
/
pd
/
tools
/
hbootv2_public
/
install_hboot
< prev
next >
Wrap
Text File
|
1996-05-14
|
2KB
|
102 lines
; This is the script for installing HandyBoot
; $VER: HBoot-Install 2.01 (29.5.96)
(complete 0)
(message "Handy Boot v2.01 Installation \n"
"\n"
"This version of HBoot is FREEWARE !\n\n"
"<< Keep The Amiga Spirit Alive >>\n\n"
" Greatings from : \n"
"\n"
" Michael D.P. de Clerck\n"
" Increased Development.\n"
" May 1996 Rotterdam \n"
"\n"
"<< SPREAD THIS TOOL WHEREEVER U GO >>\n"
)
(set @default-dest "S:")
(set installdir
(askdir
(prompt "Please select the Directory where you would like\n "
"to install HBoot 2.01 and it's files.\n"
"I will create an directory called HBoot !\n "
)
(help @askdir-help)
(default @default-dest)
)
)
(set destdir (tackon installdir "HBoot"))
(makedir destdir)
(set @default-dest installdir)
(set userdir (tackon destdir "Users"))
(makedir userdir)
(complete 20)
(
(working "Installing HBoot 2.01 Program")
(copyfiles
(prompt "Select ")
(source "")
(help @copyfiles-help)
(dest destdir)
(infos)
(choices "HBoot" "Bootmail" "HBStartup")
(confirm)
)
)
(complete 60)
(copyfiles
(prompt "Would you like to install the AmigaGuide documentation?")
(help @copyfiles-help)
(source "HBoot.Guide")
(dest destdir)
(infos)
(confirm)
)
(complete 80)
(
(working "Copying the example User scripts")
(copyfiles
(prompt "")
(help @copyfiles-help)
(source "Users")
(dest userdir)
(all)
)
)
(complete 100)
(message "Handy Boot v2.01 Installation complete\n"
"\n"
"Now add a HBoot: assign in your startup-sequence\n"
"and add the HBoot:HBoot command behind it.\n\n"
"HBoot is usable after the next reboot.\n\n"
"See the documentation for further support !\n"
"\n"
)
(exit)